def ascenseurs(n):
    L=[1200]
    for i in range(n):
        L.append(int(L[i]*1.04))
    return L